home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / SNNSV32.ZIP / SNNSv3.2 / xgui / sources / d3_point.ph < prev    next >
Encoding:
Text File  |  1994-04-25  |  1.1 KB  |  57 lines

  1. /*****************************************************************************
  2.   FILE           : d3_point.ph
  3.   SHORTNAME      : point.ph
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        : header for d3_point.c
  7.   NOTES          : all functions will be exported
  8.  
  9.   AUTHOR         : Ralf Huebner
  10.   DATE           : 1.12.1991
  11.  
  12.   CHANGED BY     :
  13.   IDENTIFICATION : @(#)d3_point.ph    1.7 3/2/94
  14.   SCCS VERSION   : 1.7
  15.   LAST CHANGE    : 3/2/94
  16.  
  17.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  18.              
  19. ******************************************************************************/
  20.  
  21.  
  22. #ifndef _D3_POINT_DEFINED_
  23. #define _D3_POINT_DEFINED_
  24.  
  25.  
  26. /* begin global definition section */
  27.  
  28.  
  29. #define POINT_BLOCK_SIZE  1024
  30.  
  31.  
  32. void d3_putPixel (int, int);
  33. void d3_putColPixel (int, int);
  34. void d3_flushPixels (void);
  35.  
  36.  
  37. /* end global definition section */
  38.  
  39.  
  40. /* begin private definition section */
  41.  
  42.  
  43. #ifdef BUFFERED_IO
  44. static XPoint points[POINT_BLOCK_SIZE];
  45. static int point_count = 0; 
  46. #endif /* BUFFERED_IO */
  47.  
  48.  
  49. /* end private definition section */
  50.  
  51.  
  52. #endif /* _D3_POINT_DEFINED_ */
  53.  
  54.  
  55. /* end of file */
  56. /* lines: 26 */
  57.